From cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526 Mon Sep 17 00:00:00 2001 From: Dhravya Date: Wed, 21 Feb 2024 16:11:35 -0700 Subject: initialised monorepo with auth and extension communication --- apps/web/src/app/api/auth/[...nextauth]/route.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 apps/web/src/app/api/auth/[...nextauth]/route.ts (limited to 'apps/web/src/app/api/auth/[...nextauth]/route.ts') diff --git a/apps/web/src/app/api/auth/[...nextauth]/route.ts b/apps/web/src/app/api/auth/[...nextauth]/route.ts new file mode 100644 index 00000000..1570f886 --- /dev/null +++ b/apps/web/src/app/api/auth/[...nextauth]/route.ts @@ -0,0 +1,7 @@ +import NextAuth from "next-auth"; + +import { authOptions } from "@/server/auth"; + +// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment +const handler = NextAuth(authOptions); +export { handler as GET, handler as POST }; -- cgit v1.2.3